h1{
text-align: center;
margin-top:20px ;
animation: shadow-inset-right 3s infinite; 
color: rgb(197, 62, 8);

}
@keyframes shadow-inset-right {
    0% {
        text-shadow: 
        2px 2px 2px #0000005b,
        4px 4px 2px #0000005b,
        6px 6px 2px #0000005b,
        8px 8px 2px #0000005b,
        10px 10px 2px #0000005b,
        12px 12px 2px #0000005b,
        14px 14px 2px #0000005b;
    }
    100% {
        text-shadow: 
        -2px -2px 2px #0000005b,
        -4px -4px 2px #0000005b,
        -6px -6px 2px #0000005b,
        -8px -8px 2px #0000005b,
        -10px -10px 2px #0000005b,
        -12px -12px 2px #0000005b,
        -14px -14px 2px #0000005b;
    }
}
body{
    font-family: "Henny Penny", system-ui;
    font-weight:400;
    font-style: normal;
    font-size: 55px
}
.container{
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 70px;
}
.container img{
    width: 100%;
    height: 50%;
    background-size: cover;
  
}
.container h1{
    position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

